type net/http.http2StreamError

25 uses

	net/http (current package)
		h2_bundle.go#L1229: type http2StreamError struct {
		h2_bundle.go#L1240: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L1241: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1244: func (e http2StreamError) Error() string {
		h2_bundle.go#L1812: 	if _, ok := err.(http2StreamError); ok {
		h2_bundle.go#L2927: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
		h2_bundle.go#L2934: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
		h2_bundle.go#L4585: 			if se, ok := wr.write.(http2StreamError); ok {
		h2_bundle.go#L4825: 		_, isReset := wr.write.(http2StreamError)
		h2_bundle.go#L4875: 			case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
		h2_bundle.go#L4952: 		case http2StreamError:
		h2_bundle.go#L5069: func (sc *http2serverConn) resetStream(se http2StreamError) {
		h2_bundle.go#L5112: 	case http2StreamError:
		h2_bundle.go#L6739: 	case http2StreamError:
		h2_bundle.go#L7293: 	if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8135: 			if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8822: 		if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8883: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L8912: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9229: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9237: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9246: 			rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9856: func (se http2StreamError) writeFrame(ctx http2writeContext) error {
		h2_bundle.go#L9860: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L10162: 		if se, ok := wr.write.(http2StreamError); ok {